home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2004 #2 / K-CD-2-2004.ISO / OpenOffice Sv / f_0397 / python-core-2.2.2 / lib / test / test_future3.py < prev    next >
Encoding:
Python Source  |  2003-07-18  |  182 b   |  12 lines

  1. from __future__ import nested_scopes
  2. from __future__ import division
  3. from __future__ import nested_scopes
  4.  
  5. def f(x):
  6.     def g(y):
  7.         return y // x
  8.     return g
  9.  
  10.  
  11. print f(2)(5)
  12.